It Looks Right To Me ^^^^^ **Definition:** * Where the test data for negative cases makes the test hard to understand **Code Example:** .. code-block:: java expect(getFieldCaseInsensitive(obj, 'username')) .toEqual('Mr User'); expect(getFieldCaseInsensitive(obj, 'Username')) .toEqual('Mr User'); expect(getFieldCaseInsensitive(obj, 'UserNaME')) .toEqual('Mr User'); **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `Test Smells - The Coding Craftsman `_ :octicon:`file-code;1em`